*{
    margin: 0;
    padding: 0;
    outline: none;
}
html{
    background-color: #fff;
}
html,body{
    font-family: Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;
    text-rendering: optimizeLegibility;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input {
    margin: 0;
    padding: 0;
    border: 0;
    /* font-size: 100%; */
    font-weight: normal;
    vertical-align: baseline;

}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* custom */
a {
    color: #fff;
    text-decoration: none;
    -webkit-backface-visibility: hidden;
}
a:hover{
    /* color:#1f6cdd; */
}
li {
    list-style: none;
}


html *::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

html *::-webkit-scrollbar-track-piece {
    background-color: #f5f5f5;
    -webkit-border-radius: 8px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
}

/* 垂直方向 */
html *::-webkit-scrollbar-thumb:vertical {
    height: 5px;
    background-color: #afafaf;
    -webkit-border-radius: 8px;
}

/* 水平方向 */
html *::-webkit-scrollbar-thumb:horizontal {
    width: 5px;
    background-color: #afafaf;
    -webkit-border-radius: 8px;
}

html, body {
    width: 100%;
    min-width: 1200px;
}

body {
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


select {
    /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
    border: solid 1px #ededed;
    /*很关键：将默认的select选择框样式清除*/
    appearance:none;
    -moz-appearance:none;
    -webkit-appearance:none;
    /*将背景改为红色*/
    background:none;
}
/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand { display: none; }

/* .clearfix:after {
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
} */

.clearfix:before,.clearfix:after{
    content:"";
    display:block;
}
.clearfix:after{
    clear:both;
}
.clearfix{
    display: inline-block;
    *zoom: 1;
    *display: inline;
}
.clear{
    clear: both;
}
input,select{
    font-size: 14px;
    color: #333333 ;
    font-family:Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;
}
textarea{
    font-size: 14px;
    color: #333333 !important;
    resize:none;
    font-family:Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;
}
input,button{
    outline: none;
    border: none;
}
button{
    cursor: pointer;
    background: none;
    font-family:Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;
}
.margin-right0{
    margin-right: 0!important;
}
.z-index-100{
    z-index: 100!important;
}
.z-index-120{
    z-index: 120!important;
}
.cantainer{
    width: 100%;
    min-width: 1200px;
    margin:0 auto;
    position: relative;
    /* z-index:750; 互动页面层级问题*/
}

@-webkit-keyframes slideDown {
    from {
        height: 0;
    }
    to {
        height: 123px;
    }
}

@keyframes slideDown {
    from {
        height: 0;
    }
    to {
        height: 123px;
    }
}





@-webkit-keyframes takeup {
    from {
        height: 123px;
    }
    to {
        height: 0;
    }
}

@keyframes takeup {
    from {
        height: 123px;
    }
    to {
        height: 0;
    }
}



@-webkit-keyframes bigger {
    from {
        -webkit-transform: scale3d(1.005,1.005,1.005);
        transform: scale3d(1.005,1.005,1.005);
    }
    to {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05);
    }
}

@keyframes bigger {
    from {
        -webkit-transform: scale3d(1.005,1.005,1.005);
        transform: scale3d(1.005,1.005,1.005);
    }
    to {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05);
    }
}


@-webkit-keyframes smaller {
    from {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05);
    }
    to {
        -webkit-transform: scale3d(1.005,1.005,1.005);
        transform: scale3d(1.005,1.005,1.005);
    }
}

@keyframes smaller {
    from {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05);
    }
    to {
        -webkit-transform: scale3d(1.005,1.005,1.005);
        transform: scale3d(1.005,1.005,1.005);
    }
}
.smaller {
    -webkit-animation-name: smaller;
    animation-name: smaller;
}
.bigger {
    -webkit-animation-name: bigger;
    animation-name: bigger;
}

.slideDown {
    -webkit-animation-name: slideDown;
    animation-name: slideDown;
}
.takeup {
    -webkit-animation-name: takeup;
    animation-name: takeup;
}
.animated {
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.visiable{
    overflow: visible!important;
    position: relative;
    z-index: 99;
}


/* 解决input写完之后留有默认背景色 */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
    -webkit-text-fill-color: #333;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition-delay: 99999s;
    -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}
/* 去掉safari浏览器下input 右侧的图标 */
input:focus::-webkit-contacts-auto-fill-button{
    opacity: 0;
}

/*css解决浏览器记住密码后input框的背景色为淡黄色的代码  */
/* input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {
  -webkit-text-fill-color: #333 !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent  inset !important;
  background-color:transparent;
  background-image: none;
  transition: background-color 50000s ease-in-out 0s; //背景色透明  生效时长  过渡效果  启用时延迟的时间
}
input {
   background-color:transparent;
} */

/* placeholder默认字体颜色 */
input::-webkit-input-placeholder { /* WebKit browsers */
    font-size: 14px;
    color: #afafaf!important;
    font-family: Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;

}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-size: 14px;
    color: #afafaf!important;
    font-family: Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
    font-size: 14px;
    color: #afafaf!important;
    font-family: Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;
}
input:-ms-input-placeholder { /* Internet Explorer 10+ */
    font-size: 14px;
    color: #afafaf!important;
    font-family: Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;
}

textarea::-webkit-input-placeholder { /* WebKit browsers */
    font-size: 14px;
    color: #afafaf!important;
    font-family: Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;

}
textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-size: 14px;
    color: #afafaf!important;
    font-family: Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;

}
textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
    font-size: 14px;
    color: #afafaf!important;
    font-family: Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;

}
textarea:-ms-input-placeholder { /* Internet Explorer 10+ */
    font-size: 14px;
    color: #afafaf!important;
    font-family: Microsoft Yahei UI, Microsoft Yahei, 微软雅黑, Segoe UI, Tahoma, Arial，宋体b8b体, SimSun, sans-serif;

}
.border-none{
    border:none!important;
}



/*webkit内核*/
.content-list-right,.map-list,.park-content::-webkit-scrollbar {
    width:0px;
    /*height:0px;*/
    /*display: none;*/
}
/*o内核*/
.content-list-right,.map-list,.park-content .-o-scrollbar{
    -moz-appearance: none !important;
    background: rgba(0,255,0,0) !important;
}



/*IE10,IE11,IE12*/
.content-list-right,.map-list,.park-content{
    -ms-scroll-chaining: chained;
    -ms-overflow-style: none;
    -ms-content-zooming: zoom;
    -ms-scroll-rails: none;
    -ms-content-zoom-limit-min: 100%;
    -ms-content-zoom-limit-max: 500%;
    -ms-scroll-snap-type: proximity;
    -ms-scroll-snap-points-x: snapList(100%, 200%, 300%, 400%, 500%);
    -ms-overflow-style: none;
    overflow: auto;
}




.swiper-pagination-switch{
    cursor: pointer;
}

/*清楚ie浏览器的input的清楚icon*/
::-ms-clear,::-ms-reveal{display:none;}



/*滚动*/
.ovf-hiden{
    overflow: hidden;
}



.div-height-47{
    height:47px;
}



.hidden-box{
    overflow: hidden;
}


#zc__sdk__sys__btn{
    z-index: 900!important;
    cursor: pointer;
    right: 100px!important;
    bottom: 100px!important;
}
#zc__sdk__container{
    z-index: 900!important;
    right: 40px!important;
}




/* 全局的按钮置灰 */
.loading-btn{
    background: #ccc!important;
}
.loading-btn:hover{
    background: #ccc!important;
    cursor: default;
}
.loading-btn-save{
    border:1px solid #ededed;
    color: #ccc;
}
.loading-btn-save:hover{
    border:1px solid #ededed;
    color: #ccc;
    cursor: default;
}

.singlePage .mainBox{
    border:none!important;
}

.sitemap-none{
    display: none;
}




.min {
    width: 1200px;
    margin: auto;
}
.common-module-default{
    display: block;
}
.common-module-active{
    display: none;
}

/* 公共标题 */
.common-module-header{
    margin-bottom: 24px;
}
.common-module-header h2{
    color: #333333;
    font-size: 32px;
    font-weight: bold;
    line-height: 48px;
    text-align: center;
}
.common-module-line{
    width: 60px;
    height: 2px;
    overflow: hidden;
    margin: auto;
}
.common-line-d5000{
    float: left;
    width: 20px;
    height: 2px;
    background-color: #D50000;
}
.common-line-1F6CDD{
    float: left;
    width: 40px;
    height: 2px;
    background-color: #1F6CDD;
}

/* 公共tab切换 */
.common-header{
    overflow: hidden;
}
.common-tab{
    float: left;
}
.common-tab li{
    float: left;
    color: #333333;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-right: 60px;
    padding: 0 5px 8px 5px;
    border-bottom: 2px solid #FFFFFF;
    cursor: pointer;
}
.common-tab li.common-tab-active{
    color: #D50000;
    font-weight: bold;
    border-bottom: 2px solid #D50000;
}
.common-tab li:hover {
    color: #D50000;
}

/* 公共操作 */
.common-operate{
    float: right;
    height: 28px;
    padding: 0 6px 0 4px;
    border-radius: 2px;
    background-color: #D50000;
    cursor: pointer;
}
.common-operate img{
    float: left;
    width: 16px;
    height: 16px;
    margin: 6px 2px 6px 0;
}
.common-operate span{
    float: left;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
}
.common-operate:hover{
    background-color: #B60E0E;
}

/* 公共查看更多 */
.common-see-more{
    position: relative;
    display: block;
    width: 184px;
    height: 40px;
    color: #808695;
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    margin: 24px auto 64px auto;
    border-radius: 2px;
    background-color: #EFF2F8;
    cursor: pointer;
}
.common-see-more:hover{
    color: #FFFFFF;
    background-color: #D50000;
}

/* 公共2/1布局 */
.common-double-content{
    margin-bottom: 16px;
}
.common-double-left{
    float: left;
    width: 846px;
    padding: 24px;
    border-radius: 2px;
    margin-right: 16px;
    background-color: #FFFFFF;
    box-shadow: 2px 6px 20px 0px rgba(215,224,230,0.3);
}
.common-double-header{
    overflow: hidden;
}
.common-double-header h2{
    float: left;
    color: #333333;
    font-size: 20px;
    font-weight: bold;
}
.common-double-operate{
    float: right;
}
.common-double-operate span{
    float: left;
    color: #666666;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.common-double-operate img{
    float: left;
    width: 10px;
    height: 10px;
    margin: 5px 0 5px 2px;
}
.common-double-operate:hover span{
    color: #D50000;
}
.common-double-operate:hover .common-module-default{
    display: none;
}
.common-double-operate:hover .common-module-active{
    display: block;
}

.common-double-right{
    float: right;
    width: 242px;
    padding: 24px;
    border-radius: 2px;
    background-color: #FFFFFF;
    box-shadow: 2px 6px 20px 0px rgba(215,224,230,0.3);
}

/* 头部 */
.header{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 2560px;
    min-width: 1200px;
    margin: auto;
    background-color: #FFFFFF;
    backdrop-filter: blur(11px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.fill-header{
    position: fixed;
    top: 40px;
    width: 100%;
    max-width: 2560px;
    min-width: 1200px;
    margin: auto;
    height: 86px;
}
.js-fill-header{
    position: relative;
    top: unset;
}
.js-fixed-header{
    position: fixed;
    top: 0;
    box-shadow: 0 0 20px rgb(0 0 0 / 5%);
}
.header-content{
    height: 86px;
    /*overflow: hidden;*/
}

.header-website{
    float: left;
}
.website-logo{
    float: left;
    /*width: 198px;*/
    height: 66px;
    margin: 10px 0;
}
.website-logo img{
    display: block;
    /*width: 198px;*/
    height: 66px;
}
.change-website{
    float: left;
    margin: 30px 0 30px 16px;
    cursor: pointer;
}
.change-website.change-website-active{
    margin: 30px 0 0 0;
    padding: 0 0 30px 16px;
    cursor: pointer;
}
.change-website span{
    float: left;
    color: #333333;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    width: 60px;
    white-space: nowrap; /* 防止文本换行 */
    overflow: hidden; /* 超出部分隐藏 */
    text-overflow: ellipsis; /* 超出部分用省略号表示 */
}
.change-website img{
    float: left;
    width: 10px;
    height: 10px;
    margin: 7.5px 0 7.5px 5px;
}
.change-website.change-website-active span{
    color: #D50000;
}
.change-website.change-website-active .common-module-default{
    display: none;
}
.change-website.change-website-active .common-module-active{
    display: block;
}

.header-ul{
    float: right;
    margin: 0 0 0 auto;
}
.header-ul a{
    float: left;
    margin: 30px 0 30px 20px;
}
.header-ul a span{
    float: left;
    color: #333333;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}
.header-ul a p{
    float: left;
    color: #D50000;
    font-size: 14px;
    font-style: italic;
    font-family: -webkit-body;
    font-weight: normal;
    line-height: 26px;
    margin-left: 4px;
}
.header-ul a:hover span{
    color: #D50000;
}
.header-ul a.header-fold-active{
    margin: 30px 0 0 40px;
    padding-bottom: 30px;
}
.header-carrier-fold:hover span{
    color: #333333;
}
.header-carrier-fold img{
    float: left;
    width: 8px;
    height: 8px;
    margin: 8px 0 8px 4px;
}
.header-carrier-fold.header-fold-active span{
    color: #D50000;
}
.header-carrier-fold.header-fold-active .common-module-default{
    display: none;
}
.header-carrier-fold.header-fold-active .common-module-active{
    display: block;
}


.header-contact{
    float: right;
    margin: 33px 0 33px 50px;
}
.header-contact img{
    float: left;
    width: 20px;
    height: 20px;
    margin-top: -2px;
}
.header-contact span{
    float: left;
    color: #D50000;
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    margin-left: 8px;
}

/*city*/
.st-screen-pop{
    position: absolute;
    top: 86px;
    right: 0;
    left: 0;
    width: 100%;
    /*height: 226px;*/
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    padding-bottom: 20px;
    overflow: hidden;
    display: none;
}
.st-screen{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.st-screen-ident{
    width: 80px;
    max-width:100px;
    flex-shrink: 0;
    color: #666;
    padding-top: 5px;
}
.st-screen-item{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: #000;
}
.st-screen-item .active{
    background-color: #4caf50;
    color: #fff;
}
.st-screen-item-one{
    padding: 5px;
    border-radius: 5px;
}
.st-screen-item-one:hover{
    background-color: #4caf50;
    color: #fff;
    cursor: pointer;
}


















/*footer*/

.index-footer a:hover{
    color: #d50000;

}
.member-qcode-box{
    width: 274px;
    height: 290px;
    background: #FFFFFF;
    box-shadow: 2px 4px 12px 0px rgba(29,33,38,0.1);
    margin: 0 auto;
    padding: 40px 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -145px; /* 高度的一半 */
    margin-left: -137px; /* 宽度的一半 */
    box-sizing: border-box;
    position: relative;
}
.member-qcode{
    width: 154px;
    height: 154px;
}
.member-text{
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    text-align: center;
    margin-top: 16px;
}
.member-qcode-close{
    position:absolute;
    right: 16px;
    top: 16px;
    font-size: 20px;
}
.close-modal-member{
    position: absolute;
    top: 16px;
    right: 16px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.index-footer{
    width: 100%;
    padding-bottom: 30px;
    /*margin-top:47px;*/
    overflow: hidden;
    background: #f8f8f8;
    border-top: 1px solid #ededed;
}
.footer-content{
    width: 1200px;
    margin:0 auto;
    /*overflow: hidden;*/
    padding-top:10px;
}
.footer-substation{
    padding:11px 0 0;
    border-bottom:none;
    margin-bottom: 1px;
}
.footer-substation-title{
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}
.footer-substation-list{
    overflow: hidden;
    margin:0px 0;
    font-size: 0;
    word-break: break-all;
    margin-left: -21px;
}
.footer-substation-list a{
    display: inline-block !important;
    *display: inline;
    zoom: 1;
    height: 24px;
    line-height: 24px;
    word-break: break-all;
    font-size: 14px;
    color: #666;
    margin-left: 21px;
}

.line-footer{
    border-top: 1px solid #ededed;
}
.common-footer{
    width: 1200px;
    margin:0 auto;
    /*overflow: hidden;*/
}
.footer-links{
    margin-top: 20px;
}
.footer-links-title{
    font-size: 16px;
    font-weight: bold;
}
.footer-links-content{
    display: flex;
    margin-top: 14px;
    gap: 20px;
}
.footer-links-content a{
    color: #333;
    font-size: 14px;
}
.footer-link{
    text-align: center;
    /*overflow: hidden;*/
    margin-top: 12px;
    line-height: 30px;
    font-size: 14px;
    color: #333;
    height: 30px;
    margin-bottom: 5px;
}
.footer-top-link{
    height: 1px;
    background:#ededed;
    position: relative;
    top: 10px;
    margin-bottom: 9px;
    margin-top: 4px;
}
.footer-link a{
    color: #333;
}
.footer-link span{
    font-size: 14px;
    color: #cecece;
    vertical-align: middle;
    padding: 0 7px;
    position: relative;
    top: -2px;
    left: 3px;
}
.footer-police{
    text-align: center;
    overflow: hidden;
    line-height: 24px;
    height: 24px;
    font-size: 12px;
    color: #666;
}
.footer-police a{
    color: #666;
}
.footer-police a + a{
    margin-left: 6px;
}
.footer-police img{
    width: 13px;
    height: 14px;
    vertical-align: middle;
    /* margin-left: 12px; */
    margin-right: 2px;
    margin-top: -2px;
}
.footer-police .investment-risk{
    width: 133px;
    height: 14px;
}
.footer-police .park-tips{
    width: 600px;
    height: 20px;
    margin: 0;
    margin-top: -2px;
}
.footer-police-brand{
    text-align: center;
    overflow: hidden;
    line-height: 20px;
    height: 20px;
    font-size: 12px;
    color: #999;
}
.footer-pics{
    overflow: hidden;
    text-align: center;
    margin-top:17px;
    font-size: 0;
}
.footer-pics img{
    width: 120px;
    height: 50px;
    margin-right: 7px;
}
.tip-modal{
    position: fixed;
    top: 40px;
    left: 50%;
    margin: 0 auto;
    margin-left: -100px;
    width: auto;
    /* height: 30px; */
    line-height: 30px;
    padding: 4px 10px;
    display: none;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background: #000;
    background-color:rgba(0,0,0,0.65);
    border-bottom-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0px 5px rgba(130, 130, 130, 0.5);
    z-index: 9999;
}
.footer-substation-all .footer-substation-title{
    float: left;
    margin-right: 15px;
    cursor: pointer;
    background: #ffffff;
    padding: 8px;
    font-size: 14px;
    color: #888;
    height: auto;
    line-height: 1;
}
.footer-substation-all .footer-substation-title:hover{
    background: #888;
    color: #fff;
}
.footer-substation-all{
    overflow: hidden;
    margin-top: 20px;
}

.index-footer .footer-substation-buttom .footer-substation-block{
    display: block;
}

.footer-substation-buttom .footer-substation{
    display: none;
    color: #888;
}

.footer-substation-all .footer-substation-active{
    background: #888;
    color: #fff;
}
.footer-substation-buttom .footer-substation-list a{
    margin-right: 21px;
    margin-left: 0px;
}
.footer-substation-buttom .footer-substation-list{
    margin-left: 0px;
}

.pendant_login_phone,
.pendant_login_account,
.pendant_login_register,
.pendant_login_forget,
.existing_account_binding,
.existing_phone_binding,
.register_login_binding {
    background: #f8f8f8;
}


/*面包屑*/
/*.crumbs{*/
/*    text-overflow: ellipsis;*/
/*    white-space: nowrap;*/
/*    overflow: hidden;*/
/*    width: 1200px;*/
/*    margin:4px auto 0;*/
/*    height: 87px;*/
/*    line-height: 87px;*/
/*    font-size: 14px;*/
/*    color: #666;*/
/*}*/
/*.crumbs a{*/
/*    font-size: 14px;*/
/*    color: #666;*/
/*    margin-right: 5px;*/
/*}*/

/* 面包屑 */
.crumbs{
    width: 100%;
    max-width: 2560px;
    min-width: 1200px;
    margin: auto;
    padding: 20px 0;
    overflow: hidden;
}
.crumbs a{
    float: left;
    color: #888888;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.crumbs a:hover{
    color: #333333;
}
.crumbs a:last-child{
    color: #333333;
    cursor: default;
}
.crumbs span{
    float: left;
    color: #888888;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin: 0 5px;
}


/*分页*/

.pages-number{
    padding: 30px 0;
    /*width: 547px;
    _width: 528px;/*只针对于ie6的样式*/
    /*height: 29px;*/
    margin: 0 auto;
    overflow: hidden;
    font-size: 0;
    text-align: center;
    vertical-align: top;
}
.pages-number a{
    border: 1px solid #ededed;
    font-size: 14px;
    color: #333333;
    padding: 0 9px;
    line-height: 26px;
    background-color: #ffffff;
    margin-right: 9px;
    display: inline-block;

}
.pages-number span.interview-input{
    border: 1px solid #ededed;
    font-size: 14px;
    color: #333333;
    padding: 0 9px;
    width: 58px;
    line-height: 26px;
    background-color: #ffffff;
    margin-right: 9px;
    display: inline-block;

}
.pages-number span.jump{
    font-size: 14px;
    color: #333333;
    margin-right: 9px;
    display: inline-block;
    line-height: 26px;
}
.pages-number .dots{
    line-height: 20px;
}
.interview-input input{
    width: 24px;
    padding-left: 5px;
    height: 26px;
    line-height: 25px;
    display: inline-block;
}
.interview-input p{
    width: 24px;
    height: 26px;
    float: right;
    line-height: 26px;
    text-align: left;
    margin: 0;
}
.pages-number button{
    width: 43px;
    height: 28px;
    background-color: #d50000;
    line-height: 28px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;

}
.pages-number button:hover{
    background-color: #b60e0e;
    transition: all .225s ease-in-out;
}
.pages-number a:hover{
    background-color: #d50000;
    color: #ffffff;
    border: 1px solid #d50000;
    transition: all .225s ease-in-out;
}

.pages-number .active{
    background-color: #d50000;
    color: #ffffff;
    border: 1px solid #d50000;

}




.com-grid{
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;

}
.recommend-single{
    margin: 16px 15px 0 0;
    padding: 24px 0 24px 0;
    overflow: hidden;
    border-radius: 2px;
    background-color: #FFFFFF;;
    box-shadow: 2px 6px 20px 0px rgba(215,224,230,0.3);
}
.recommend-director{
    position: relative;
    width: 228px;
    height: 40px;
    padding: 16px;
    border-radius: 2px;
    *background: #FFFFFF;
    background: #F5F7FA;
    margin-left: 24px;
}

.com-park-grid{
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-template-rows: auto;
}

.com-project-grid{
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
}
.com-hidden{
    display: none;
}
/* 随机背景色 */
.random0{
    background-color: #AE98C6;
}
.random1{
    background-color: #E79178;
}
.random2{
    background-color: #E8AB6F;
}
.random3{
    background-color: #8BA2CC;
}
.random4{
    background-color: #6EAAE2;
}
.random5{
    background-color: #6BB5CE;
}
.random6{
    background-color: #91CFB7;
}

.common-module-default{
    display: block;
}
.common-module-active{
    display: none;
}

/*视频详情*/
.video-detail{
    background-color: #F2F3F5;
    padding-bottom: 20px;
}
.video-main{
    display: flex;
    gap: 40px;
    padding: 30px;
    width: calc(100% - 60px);
    background-color: #fff;
    justify-content: center;
}
.video-main > div {
    flex: 1;
}
.video-main-title{
    line-height: 40px;
    font-size: 30px;
    color: #333333;
    font-weight: bold;
}
.video-main-content{
    color: #FF881F;
    font-size: 18px;
    font-weight: bold;
    line-height: 20px;
    margin-top: 20px;
}
.video-line{
    height: 1px;
    background-color: #EDEDED;
    margin:25px 0;
}
.video-one-params{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.video-one-params-title{
    color: #333;
    font-size: 14px;
    line-height: 22px;
    width: 50px;
}
.video-one-params-value{
    color: #333333;
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
}
.video-intro{
    width: calc(100% - 60px);
    margin-top: 40px;
    padding: 0 30px 30px;
    background: #ffffff;
}
.video-intro-title{
    width: 100%;
    height: 70px;
    line-height: 70px;
    font-size:20px;
    font-weight: bold;
    border-bottom: 1px solid #EEEEEE;
    margin-bottom: 30px;
}
.video-intro-content{
    color: #666666;
    font-size:14px;
    line-height:32px
}
.video-intro-content img{
    width: 100%;
    margin: 10px auto;
}


/* 面包屑 */
.crumbs-new{
    color: #333;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    padding: 10px 0;
}
.crumbs-new a{
    color: #333;
}

/*二维码*/
.qrcode-main{
    position: relative;
}
.qrcode{
    position: absolute;
    z-index: 99;
    left: 100%;
    top:0;
    width: 140px;
    height: 140px;
    margin-left: 10px;
    border: 1px solid #eeeeee;
    color: #333;
    display: none;
}
.qrcode-top{

}
.qrcode img{
    width: 100%;
    height: 100%;
}

.qrcode-main:hover .qrcode{
    display: block;
}

/*列表搜索*/
.empty-data{
    text-align: center;
    line-height: 100px;
}

/* 上面的搜索 */
.top-box{
    padding-top: 20px;
    padding-bottom: 40px;
    background: #FFFFFF;
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.05);
}
.top-box .min{
    position: relative;
}
.zs-logo{
    display: inline-block;
}
.zs-logo img{
    display: block;
    width: 283px;
    height: 46px;
}
.search-box{
    margin-top: 30px;
    overflow: hidden;
}
.search-box select{
    width: 100px;
    height: 45.6px;
    background: #F8F9FB;
    border: 1px solid #d5d5d5;
    border-right: none;
    float: left;
    text-align: center;
}
.search-box input{
    width: 594px;
    height: 44px;
    background: #F8F9FB;
    border: 1px solid #d5d5d5;
    float: left;
    text-indent: 10px;
}
.search-button{
    float: left;
    width: 138px;
    height: 46px;
    background: #D50000;
    border-radius: 0px 3px 3px 0px;
    font-size: 16px;
    font-weight: bolder;
    color: #FFFFFF;
    line-height: 46px;
    text-align: center;
    cursor: pointer;
}
.search-button:hover{
    background: #b60e0e;
}

/*区县介绍*/
.common-back{
    background: #F2F3F5;
    padding-bottom: 30px;
}
.info-main{
    padding: 40px;
    background: #ffffff;
    color: #333333;
    line-height: 30px;
}
.info-main-title{
    font-size:30px;
    font-weight: bold;
    text-align: center;
}
.info-main-time{
    margin: 20px 0;
    font-size: 13px;
    text-align: center;
}
.info-main-content{
    font-size: 16px;
}
.info-main-content img{
    width: 100%;
    margin: 10px auto;
}


/*地图查找*/
.search-map-bg{
    width: 100%;
    height: 100px;
    background: #7d2b2d;
}
.search-map-menu{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    height: 60px;
}
.search-map-menu > a{
    display: block;
    background: #dcdedd;
    color: #342c2a;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 60px;
    font-weight: bold;
    border: 1px solid #ffffff;
    cursor: pointer;
}
.search-map-menu > a:hover,.search-map-menu .active{
    background: #e6212a;
    color: #ffffff;
}

.search-map-content{
    display: flex;
    margin: 20px 0;
    gap:20px;
}
.search-map-content-left{
    width: 14%;
    margin-top: 30px;
}
.search-map-content-right{
    width: 86%;
}
.search-map-content-left-crumbs{
    line-height: 30px;
    margin-bottom: 20px;
}
.search-map-content-left-crumbs > a{
    color: #000000;
    font-weight: bold;
}
.search-map-content-left-crumbs .active{
    color: #7c2c2d;
}
.search-map-content-left-st{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.search-map-content-left-st > div{
    line-height: 40px;
    /*text-align: center;*/
    /*background: #fad4d3;*/
    border-bottom: 1px dashed #000000;
    cursor: pointer;
    white-space: nowrap; /* 禁止换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 超出部分显示为省略号 */
}
.search-map-content-left-st > div:hover,.search-map-content-left-st > div .active{
    /*background: #e6212a;*/
    color: #e6212a;
    border-bottom: 1px dashed #e6212a;
}